docs: remove invalid version field from skill frontmatter#16
Merged
Conversation
The `version` field is not a valid YAML frontmatter field for skills according to official Claude Code documentation. Valid fields are: - name (required) - description (required) - allowed-tools (optional) Removes `version: 0.1.0` from all 7 skill SKILL.md files and updates the skill-creation-workflow.md template to exclude this field. Fixes #12 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
3 tasks
|
Claude finished @sjnims's task —— View job Review SummaryStatus: Approved ✅ This PR correctly removes an invalid field from skill frontmatter, improving compliance with official Claude Code documentation. What's GoodAccurate Problem Identification
Comprehensive Coverage
Clean Implementation
Markdown Linting✅ All files pass: Additional VerificationSearched for remaining references to skill version:
Frontmatter Structure Verified:
Checklist VerificationFrom the PR description:
All items confirmed. RecommendationMerge this PR. The changes are correct, well-documented, and align with official Claude Code plugin specifications. This sets a good example for plugin developers by removing an undocumented field that could cause confusion. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
versionfield from all 7 skill SKILL.md frontmatterProblem
Fixes #12
The
versionfield was present in skill frontmatter but is not a valid field according to official Claude Code documentation. Valid skill frontmatter fields are:name(required)description(required)allowed-tools(optional)Solution
Remove
version: 0.1.0from all skill files since it's not a recognized field. This aligns the plugin's skills with the official specification.Alternatives Considered
Changes
plugins/plugin-dev/skills/*/SKILL.md(7 files): Removeversion: 0.1.0lineplugins/plugin-dev/skills/skill-development/references/skill-creation-workflow.md: Remove version from template exampleTesting
🤖 Generated with Claude Code